home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
fractal
/
kaos.lha
/
complib
/
free_svector.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-11-18
|
196 b
|
15 lines
/*
### free memory for a 1-d character string array ###
*/
void free_svector(m,n1,n2)
char **m;
int n1,n2;
{
int i;
/*
for(i=n2;i>=n1;i--) free((char *) (m[i]));
*/
free((char *) (m+n1));
}